home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’93 / Inside Mac Movie Toolbox Code / mtb9.c < prev    next >
Text File  |  1992-10-22  |  392b  |  19 lines

  1. //    Copyright:    © 1992 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #include "mtb.h"
  4.  
  5. void DrawFrame (const Rect *trackFrame,  long curSample)
  6. {
  7.     Str255 numStr;
  8.  
  9.     ForeColor( redColor );
  10.     PaintRect( trackFrame );
  11.  
  12.     ForeColor( blueColor );
  13.     NumToString (curSample, numStr);
  14.     MoveTo ( trackFrame->right / 2, trackFrame->bottom / 2);
  15.     TextSize ( trackFrame->bottom / 3);
  16.     DrawString (numStr);
  17. }
  18.  
  19.